home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
minix
/
includ~1.z
/
includ~1
/
utmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-12-02
|
285 b
|
16 lines
/* The <utmp.h> header is used by login(1), init, and who(1) */
#ifndef _UTMP_H
#define _UTMP_H
#define WTMP "/usr/adm/wtmp"
struct utmp
{
char ut_line[8]; /* terminal name */
char ut_name[8]; /* user name */
long ut_time; /* login/out time */
};
#endif /* _UTMP_H */